home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-10 | 577 b | 19 lines | [TEXT/ToyS] |
- -- Sample AppleScripts for touchMe, 1996 (C) Mizutori Tetsuya
- -- A droplet to change the creation date to the date "8/1/96",
- -- and the modification date according to the first dropped file
- -- To get a droplet, execute "Save As Run-Only..." command.
-
- tell me to open {(choose file)}
-
- on open (docList)
- tell application "touchMe"
- activate
- --set theDate to current date
- set theDate to date "8/1/96 12:10"
- set prefs creation to {enabled:true, flag:exact, value:theDate}
- set prefs modification to {enabled:true, flag:firstone}
- touch docList
- quit
- end tell
- end open
-